home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998…tember: Reference Library / Dev.CD Sep 98 RL2.toast / What's New / Software Development Kits / MacOS USB DDK / Examples / UniversalModule / UniversalModuleVersion.h < prev   
Encoding:
C/C++ Source or Header  |  1998-07-20  |  800 b   |  26 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        PackageVersion.h
  3.  
  4.     Contains:    Version number values for the entire package
  5.  
  6.     Version:    xxx put version here xxx
  7.  
  8.     Copyright:    © 1998 by Apple Computer, Inc., all rights reserved.
  9.  
  10. */
  11.  
  12. #ifndef __UNIVERSALMODULEVERSION__
  13. #define __UNIVERSALMODULEVERSION__
  14.  
  15. #include    "PackageVersion.h"
  16.  
  17. #define kUniversalStringVersShort    "1.0 DDK"
  18. #define kUniversalStringVersLong    "1.0 DDK, © 1998 Apple Computer, Inc."
  19.  
  20. #define kUniversalHexMajorVers        0x01                        // This should never change for the current project.
  21. #define kUniversalHexMinorVers        0x00                        // This should never change for the current project.
  22. #define kUniversalCurrentRelease    kFinalRelease                // Be sure to adjust this when the milestone is reached.
  23. #define kUniversalReleaseStage        0                            // Be sure to adjust this number every build.
  24.  
  25. #endif
  26.